home *** CD-ROM | disk | FTP | other *** search
/ Collection of Internet / Collection of Internet.iso / protocol / standard / sgml / sgml.che < prev    next >
Text File  |  1993-07-14  |  2KB  |  58 lines

  1.              Parser install etc.
  2.              ===================
  3.  
  4.      *  make a directory for the parser subdirectories, e.g.
  5.    
  6.               cd /home
  7.               mkdir sgml
  8.  
  9.      *  copy the cpio file to the directory you just made:
  10.  
  11.               cd /home/sgml
  12.               cp /where_ever/sgml.cpio  .
  13.  
  14.      *  unwind the cpio file from the sgml directory:
  15.  
  16.               cpio -icvdu <sgml.cpio
  17.  
  18.      *  the previous step built the following subdirectories for you:
  19.  
  20.               'incs'     ---  include files
  21.               'parse'    ---  parse   module source amd sample DTD
  22.               'parse1'   ---  parse1  module source and Makefile
  23.               'parse1a'  ---  parse1a module source
  24.               'parse2a'  ---  parse2a module source
  25.               'parse2b'  ---  parse2b module source and Makefile
  26.               'parse3'   ---  parse3  module source and Makefile
  27.  
  28.       *  you can delete the README in the 'parse2b' subdirectory and
  29.          the "dtd" file in the 'parse1' subdirectory; they are N/A.
  30.  
  31.       *  build the executables; in the subdirectories that have 
  32.          Makefiles you can just run "make".  In the others you
  33.          can use cc, e.g.:
  34.  
  35.               cc -o parse parse.c         
  36.               cc -o parse1a parse1a.c
  37.               cc -o parse2a parse2a.c
  38.  
  39.       *  move all of the binaries to the 'parse' subdirectory.
  40.  
  41.       *  change to the 'parse' subdirectory to run the program:
  42.  
  43.               cd /home/sgml/parse
  44.  
  45.               parse dtd
  46.  
  47.        *  Now that you've gotten this far, if you want to visit with
  48.           the author, call:
  49.  
  50.                 Jim Heath
  51.                 NIST Bldg. 225, Rm. B-266
  52.                 Gaithersburg, MD  20899
  53.  
  54.                 (301) 975-3350
  55.  
  56.  
  57.  
  58.